Update BoringSSL The current version of BoringSSL is over two years old, whereas Chrome is linked against a version from this year. This patch updates Open Screen to depend on the newer version of OpenSSL. Change-Id: I4f256687a580bf7a6cf84b86aca544063b0019ed 
diff --git a/DEPS b/DEPS index cbc16a2..ab352f5 100644 --- a/DEPS +++ b/DEPS 
@@ -14,7 +14,7 @@    'third_party/boringssl/src': {  'url': Var('boringssl_git') + '/boringssl.git' + '@' + - '6410e18e9190b6b0c71955119fbf3cae1b9eedb7', + '78987bb7bb4764ca3a8b08b0a6f7bd14b53c3e4f',  'condition': 'checkout_chromium_quic_boringssl',  }  } diff --git a/net/third_party/quic/core/crypto/scoped_evp_aead_ctx.cc b/net/third_party/quic/core/crypto/scoped_evp_aead_ctx.cc index b2d869d..c0fe8c2 100644 --- a/net/third_party/quic/core/crypto/scoped_evp_aead_ctx.cc +++ b/net/third_party/quic/core/crypto/scoped_evp_aead_ctx.cc 
@@ -7,8 +7,7 @@  namespace quic {    ScopedEVPAEADCtx::ScopedEVPAEADCtx() { - ctx_.aead = nullptr; - ctx_.aead_state = nullptr; + EVP_AEAD_CTX_zero(&ctx_);  }    ScopedEVPAEADCtx::~ScopedEVPAEADCtx() {